home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _B602B611016F40D0BF42FBDA7974486F < prev    next >
Encoding:
Text File  |  2004-03-05  |  781 b   |  39 lines

  1. !include("surface.def")
  2.  
  3. Shader()
  4. {
  5.     SurfaceID(SRF_WATER)
  6.     Shaderquality(0)
  7.     NoLightmaps()
  8.  
  9.     sortweight("translucent1")
  10.  
  11.     Pass()
  12.     {
  13.         !include("__Cubemap.mtt")
  14.  
  15.         tmu()
  16.         {
  17.             Texture()
  18.             {
  19.                 Mapchannel(0)
  20.                 Image("Puddle.dds")
  21.             }
  22.             ColorOp("mul", "tfactor", "current", "current")     //texture * lighting
  23.             AlphaOp("mul", "texture", "tfactor", "current")    //fadeblending
  24.         }
  25.  
  26.         Tfactor(%daycolor_r, %daycolor_g, %daycolor_b, 0.25)
  27.  
  28.         BlendFunc("src_alpha", "inv_src_alpha")
  29.         AlphaFunc( "greater", 0 )
  30.         depthfunc("lequal", 1)
  31.     }
  32.  
  33.     lightpass()
  34.  
  35.     !include("spot_spotmap.mtt")
  36.     Cull("cw")
  37. }
  38.  
  39.